/* 全局 */
*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    text-decoration: none;
    color:#333;
    appearance: none;
    font-weight: 100;
    font-size: 14px;
    list-style: none;
    letter-spacing:2px;
    outline: none;
}
/* 返回顶部 */
.rtop{
	width: 40px;
	height: 40px;
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 999;
	background-color: #673de6;
	text-align: center;
	line-height: 40px;
	font-weight: 900;
	color: #fff;
	cursor: pointer;
	display: none;
    border-radius: 50%;
}
/* 头部 */
.header{
    display:flex;
    flex-direction:row;
    align-items:center;
    position: sticky;
    top: 0px;
    padding: 20px;
    box-shadow: 0px 0px 13px 4px rgba(0,0,0,0.1);
    z-index: 999;
    background-color: #fff;
    transition: all 0.5s;
}
.header img{
    width: 50px;
    height: 50px;
}
.header p{
    font-size: 18px;
    font-weight: 800;
    margin-left: 10px;
}
.header nav{
    margin-left: 20px;
}
.header nav a{

}
.header nav a:hover{
    border-bottom: 1px solid #673de6;
    color: #673de6;
}
/* 轮播图 */
.banner {
  width: 100%;
  height: 350px;
  z-index: 0;
}
.banner .swiper-wrapper .swiper-slide ,.cooperate .swiper .swiper-wrapper .swiper-slide{
  /* text-align: center; */
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
/* 产品 */
.goods{
    min-height: 380px;
    background-color: #f8f8f8;
    padding: 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}
.goods div{
    width: 300px;
    min-height: 350px;
    border: 1px solid #999;
    display: inline-block;
    /* margin-left: 10px; */
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.goods div img{
    width: 100%;
    height: 200px;
}
.goods div h3{
    font-size: 16px;
}
.goods div p{
    font-size: 12px;
}
.goods div a{
    width: 150px;
    display: inline-block;
    margin-left: calc(50% - 75px);
    font-size: 12px;
    border: 1px solid #999;
    text-align: center;
    height: 30px;
    line-height: 30px;
    margin-top: 10px;
}
.goods div h3,.goods div p{
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
}
/*产品详情页*/
.GoodsDetail{
    max-width: 90vw;
    min-width: 500px;
    margin: 0 auto;
}
.GoodsDetail h3{
    margin-top: 20px;
    margin-bottom: 10px;
}
.GoodsDetail .content{
    width: 100%;
    margin-bottom: 10px;
}
.GoodsDetail .mark{
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 12px;
    color: #999;
    border-bottom: 1px dashed #ebebeb;
}
.GoodsDetail .mark span{
    color: #e4393c;
    font-size: 18px;
}
.GoodsDetail .mark button{
    color: #fff;
    background-color: #df3033;
    font-size: 16px;
    border: 0;
    padding: 5px 20px 5px 20px;
    font-weight: 200;
    border-radius: 5px;
    float: right;
}
.GoodsDetail .content img,.GoodsDetail .content video{
    max-width: 100%;
    display: block;
}
/* 新闻 */
.news{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    min-height: 150px;
    padding: 20px;
}
.news .list{
    width: 24%;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border-bottom: 1px dashed #999;
    padding-left: 20px;
    padding-right: 20px;
}

/* 标题 */
.tip-title{
    display: block;
    height: 50px;
    text-align: center;
    line-height: 50px;
    width: 100%;
    font-weight: 400;
    margin-bottom: 20px;
}
/* 合作 */
.cooperate{
    background-color: #f8f8f8;
    height: 180px;
}
.cooperate .swiper{
    height: 80px;
}
.cooperate .swiper .swiper-slide{
    user-select:none;
}
/* 常见问题 */
.issue{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    user-select:none;
    
}
.issue-tab{
    width: 98%;
    min-height: 50px;
    line-height: 50px;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f8f8f8;
    margin-bottom: 10px;
    border-radius: 5px;
}
.issue-tab div{
    line-height: 20px;
    padding-bottom: 20px;
    display: none;
    border-top:1px solid #ebebeb;
    padding-top: 20px;
}
/* 客服 */
.staff-chat{
    background-color: #673de6;
    width: 40px;
	height: 40px;
	position: fixed;
	right: 10px;
	bottom: 60px;
	z-index: 999;
	text-align: center;
	line-height: 30px;
	font-weight: 900;
	cursor: pointer;
    border-radius: 50%;
    padding: 10px;
}
.staff-chat img{
    width: 100%;
    height: 100%;
}
/* 聊天窗口 */
.chat-view{
    width: 350px;
    height: 500px;
    background-color: #fff;
    border: 1px solid #dad9da;
    border-radius: 8px;
    position: fixed;
    bottom: 10px;
    right: 60px;
    z-index: 9999;
    display: none;
}

/* 聊天标题 */
.chat-view .chat-title{
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
    padding: 10px;
}
.chat-view .chat-title p{
    font-size: 16px;
    font-weight: 800;
}
.chat-view .chat-title img{
    width: 40px;
    height: 40px;
    padding: 10px;
}
.chat-view .chat-title img:hover{
    background-color: #f2f3f6;
    border-radius: 8px;
}
/* 消息框 */
.chat-view .chat-msg{
    height: 370px;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 8px;
    background-color: #fcfcfc;
    width: 98%;
    margin-left: 1%;
    overflow-y:scroll;
    word-break:break-all;
    word-wrap:break-word;
}
/* 客服消息样式 */
.chat-view .chat-msg .staff{
    background-color: #f2f3f6;
    width: 98%;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-left: 1%;
    font-size: 12px;
}
/* 客户消息样式 */
.chat-view .chat-msg .usermsg{
    background-color: #20a23a;
    width: 98%;
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 10px;
    margin-left: 1%;
    font-size: 12px;
}
/* 输入框 */
.chat-view .input-text{
    width: 98%;
    height: 50px;
    margin: 1%;
    border: 1px solid #dad9da;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}
.chat-view .input-text:hover{
    border: 1px solid #673de6;
}
.chat-view .input-text input{
    width: 280px;
    height: 40px;
}
/* 发送按钮 */
.chat-view .input-text .icon-intext{
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: #f2f3f6;
    border-radius: 8px;
    fill:#727586;
}
.chat-view .input-text .icon-intext:hover{
    background-color: #673de6;
    fill: #fff;
}
/* 客服屏幕小于500像素 */
@media screen and (max-width: 500px){
    .chat-view{
        width: 100%;
        bottom: 0px;
        right: 0px;
    }
    .chat-view .input-text input{
        width: calc(100% - 60px);
    }
}
/*时间轴*/
.timeline{
    padding: 20px;
    margin-top: 20px;
    width: 800px;
    margin-left: calc(50% - 400px);
    min-height: calc(100vh - 250px);
}
.lines{
    position: fixed;
    width: 5px;
    left: calc(50% - 2.5px);
    height: 100vh;
    background-color: #e8e8e8;
    z-index: -999;
}
.timeline .box{
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
}
.timeline .box .left,.timeline .box .right{
    width: 40%;
    color: rgb(90, 90, 90);
    padding: 10px;
    font-size: 14px;
    /*background-color: rgba(0,0,255,.5);*/
}
.timeline .box:nth-child(even) .left{
    /*单数*/
    background-color: #f8f8f8;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    margin-right: 20px;
    margin-left: -20px;
    border-radius: 25px 5px;
}
.timeline .box:nth-child(odd) .right{
    /*双数*/
    background-color: #f8f8f8;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    margin-right: -20px;
    margin-left: 20px;
    border-radius: 5px 25px;
}
.timeline .box .center{
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 500 16px '';
    background-color: #ebebeb;
    height: 39px;
}
.timeline .box:nth-child(even) .center{
    border-radius: 0px 25px 25px 25px;
}
.timeline .box:nth-child(odd) .center{
    border-radius: 25px 0px 25px 25px;
}

/* 友情链接 */
.links{
    background-color: #f8f8f8;
    min-height: 50px;
    padding: 20px;
}
.links a{
    font-size: 12px;
    margin-left: 10px;
    margin-right: 10px;
}
/* 底部版权©️ */
.copyright{
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 12px;
    background-color: #fff;
}
/*留言*/
.message{
    padding: 20px;
    margin: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.message input,.message textarea,.message button{
    width: 50vw;
    height: 38px;
    display: block;
    padding: 0px 20px 0px 20px;
    margin: 10px 0px 10px 0px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #999;
    font-size: 14px;
}
.message textarea{
    min-width: 50vw;
    max-width: 50vw;
    min-height: 180px;
    padding: 20px;
}
.message button{
    border: 0px;
    background-color: #0075cf;
    color: #f8f8f8;
}
/*联系*/
.contact{
    margin: 20px;
    margin-top: 50px;
    min-height: calc(100vh - 300px);
    padding: 20px;
}
.contact h3,.contact h4,.contact p{
    font-weight: 100;
    line-height: 30px;
    font-size: 16px;
}
.contact h3{
    color: #0075cf;
    font-size: 20px;
}
.contact img{
    width: 150px;
    height: 150px;
}
/*招聘*/
.recruit{
    margin: 20px;
    padding: 20px;
}
.recruit div{
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px;
    padding-top: 20px;
}
.recruit div h3,.recruit div .intro{
    font-weight: 100;
    line-height: 30px;
    font-size: 14px;
    width: 80%;
    border: 0;
}
.recruit div input{
    width: 120px;
    height: 30px;
    border: 0;
    color: #f8f8f8;
    background-color: #0075cf;
    float: right;
    margin-top: -45px;
    border-radius: 5px;
}
/*简历创建&&提交*/
.resume-tips{
    margin: 20px;
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    min-height: 200px;
    margin-left: 25%;
    background-color: #fff;
    border: 1px solid #999;
    display: none;
    position: fixed;
    top: 20vh;
    z-index: 99;
}
.resume-tips legend {
    background-color: #000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 5px;
}
.resume-tips input{
    width: 100%;
    height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    border-radius: 5px;
    border: 1px solid #999;
}
.resume-tips button{
    width: 100px;
    height: 30px;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    border: 0;
}
/*新闻*/
.news{
    margin: 20px;
}
.news div{
    width: 95vw;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 20px;
}
.news div h3 a{
 font-weight: 400;
}
.news div p{
    color: #999;
    margin-top: 20px;
    margin-bottom: 40px;
}
.news div span{
    color: #999;
    font-size: 12px;
    float: right;
    margin-top: -30px;
}
/*新闻文章*/
.NewsDetail{
    max-width: 90vw;
    min-width: 500px;
    margin: 0 auto;
}
.NewsDetail h3{
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}
.NewsDetail .content{
    width: 100%;
    margin-bottom: 50px;
}
.NewsDetail .mark{
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 12px;
    color: #999;
    border-bottom: 1px dashed #ebebeb;
}
.NewsDetail .content img,.NewsDetail .content video{
    max-width: 100%;
    display: block;
}
/* 屏幕小于1000像素 */
@media screen and (max-width: 1000px){
    .news a{
        width: 32%;
    }
    .banner{
        height: 300px;
    }
    .cooperate .swiper{
        height: 70px;
    }
}
/* 屏幕小于800像素 */
@media screen and (max-width: 800px){
    .news a{
        width: 48%;
    }
    .banner{
        height: 250px;
    }
    .cooperate .swiper{
        height: 60px;
    }
}
/* 屏幕小于550像素 */
@media screen and (max-width: 550px){
    .news a{
        width: 96%;
    }
    .banner{
        height: 200px;
    }
    .cooperate{
        height: 150px;
    }
    .cooperate .swiper{
        height: 50px;
    }
    .news .list, .issue-tab h4, .issue-tab div, .links a, .copyright{
        font-size: 10px;
    }
    .goods div{
        width: 98%;
    }
    .header img{
        width: 30px;
        height: 30px;
    }
    .header p{
        display: none;
    }
    .header nav a{
        font-size: 12px;
    }
    .links a{
        font-size: 12px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .timeline{
        width: 90%;
        margin: 5%;
        padding: 20px;
    }
    .timeline .box .center{
        font: 400 14px '';
    }
    .message{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0;
    }
    .message input,.message textarea,.message button{
        font: 100 12px '';
        min-width: 90vw;
        max-width: 90vw;
        width: 90vw;
    }
    .contact h3,.contact h4,.contact p{
        font-weight: 100;
        line-height: 30px;
        font-size: 12px;
    }
    .contact h3{
        color: #0075cf;
        font-size: 16px;
    }
    .recruit,.contact{
        margin: 0;
    }
    .recruit div h3,.recruit div p,.recruit div .intro{
        font-weight: 100;
        line-height: 30px;
        font-size: 12px;
        width: 100%;
     }
     .recruit div h3{
         font-weight: 400;
     }
    .recruit div input{
        width: 80px;
        float: none;
        margin-top: 10px;
        font-size: 12px;
    }
    .resume-tips{
        width: 95%;
        margin-left: 2.5%;
    }
    .news div h3{
        font-size: 16px;
    }
    .news div p{
        font-size: 14px;
    }
    .NewsDetail,.GoodsDetail{
        max-width: 95%;
        min-width: 95%;
    }
}